home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Resources / Chat & Communication / Digsby build 37 / digsby_setup.exe / lib / email / mime / text.pyo (.txt) < prev   
Python Compiled Bytecode  |  2008-10-13  |  726b  |  17 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyo (Python 2.5)
  3.  
  4. __all__ = [
  5.     'MIMEText']
  6. from email.encoders import encode_7or8bit
  7. from email.mime.nonmultipart import MIMENonMultipart
  8.  
  9. class MIMEText(MIMENonMultipart):
  10.     
  11.     def __init__(self, _text, _subtype = 'plain', _charset = 'us-ascii'):
  12.         MIMENonMultipart.__init__(self, 'text', _subtype, **{
  13.             'charset': _charset })
  14.         self.set_payload(_text, _charset)
  15.  
  16.  
  17.